home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue26 / tiptrix / NoteMenu / main.dfm / main.txt
Encoding:
Text File  |  1997-08-16  |  3.6 KB  |  173 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   Width = 304
  5.   Height = 190
  6.   Caption = 'Notebook Menu Demo'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Menu = MainMenu1
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object TabSet1: TTabSet
  17.     Left = 0
  18.     Top = 123
  19.     Width = 296
  20.     Height = 21
  21.     Align = alBottom
  22.     Font.Charset = DEFAULT_CHARSET
  23.     Font.Color = clWindowText
  24.     Font.Height = -11
  25.     Font.Name = 'MS Sans Serif'
  26.     Font.Style = []
  27.     Tabs.Strings = (
  28.       'Page 1'
  29.       'Page 2')
  30.     TabIndex = 0
  31.     OnChange = TabSet1Change
  32.   end
  33.   object Notebook1: TNotebook
  34.     Left = 0
  35.     Top = 0
  36.     Width = 296
  37.     Height = 123
  38.     Align = alClient
  39.     TabOrder = 1
  40.     object TPage
  41.       Left = 0
  42.       Top = 0
  43.       Caption = 'Default'
  44.       object BitBtn1: TBitBtn
  45.         Left = 212
  46.         Top = 8
  47.         Width = 75
  48.         Height = 25
  49.         Caption = 'Form 2'
  50.         TabOrder = 0
  51.         OnClick = BitBtn1Click
  52.       end
  53.       object BitBtn2: TBitBtn
  54.         Left = 212
  55.         Top = 40
  56.         Width = 75
  57.         Height = 25
  58.         Caption = 'Form 3'
  59.         TabOrder = 1
  60.         OnClick = BitBtn2Click
  61.       end
  62.     end
  63.   end
  64.   object MainMenu1: TMainMenu
  65.     Left = 8
  66.     Top = 8
  67.     object File1: TMenuItem
  68.       Caption = '&File'
  69.       object New1: TMenuItem
  70.         Caption = '&New'
  71.       end
  72.       object Open1: TMenuItem
  73.         Caption = '&Open...'
  74.       end
  75.       object Save1: TMenuItem
  76.         Caption = '&Save'
  77.       end
  78.       object SaveAs1: TMenuItem
  79.         Caption = 'Save &As...'
  80.       end
  81.       object N2: TMenuItem
  82.         Caption = '-'
  83.       end
  84.       object Print1: TMenuItem
  85.         Caption = '&Print...'
  86.       end
  87.       object PrintSetup1: TMenuItem
  88.         Caption = 'P&rint Setup...'
  89.       end
  90.       object N1: TMenuItem
  91.         Caption = '-'
  92.       end
  93.       object Exit1: TMenuItem
  94.         Caption = 'E&xit'
  95.       end
  96.     end
  97.   end
  98.   object Page1Menu: TMainMenu
  99.     Left = 24
  100.     Top = 16
  101.     object Window1: TMenuItem
  102.       Caption = '&Window'
  103.       GroupIndex = 1
  104.       object NewWindow1: TMenuItem
  105.         Caption = '&New Window'
  106.       end
  107.       object Tile1: TMenuItem
  108.         Caption = '&Tile'
  109.       end
  110.       object Cascade1: TMenuItem
  111.         Caption = '&Cascade'
  112.       end
  113.       object ArrangeAll1: TMenuItem
  114.         Caption = '&Arrange All'
  115.       end
  116.       object N3: TMenuItem
  117.         Caption = '-'
  118.       end
  119.       object Hide1: TMenuItem
  120.         Caption = '&Hide'
  121.       end
  122.       object Show1: TMenuItem
  123.         Caption = '&Show...'
  124.       end
  125.     end
  126.   end
  127.   object Page2Menu: TMainMenu
  128.     Left = 40
  129.     Top = 24
  130.     object Window2: TMenuItem
  131.       Caption = '&Window'
  132.       GroupIndex = 1
  133.       object NewWindow2: TMenuItem
  134.         Caption = '&New Window'
  135.       end
  136.       object Tile2: TMenuItem
  137.         Caption = '&Tile'
  138.       end
  139.       object Cascade2: TMenuItem
  140.         Caption = '&Cascade'
  141.       end
  142.       object ArrangeAll2: TMenuItem
  143.         Caption = '&Arrange All'
  144.       end
  145.       object N4: TMenuItem
  146.         Caption = '-'
  147.       end
  148.       object Hide2: TMenuItem
  149.         Caption = '&Hide'
  150.       end
  151.       object Show2: TMenuItem
  152.         Caption = '&Show...'
  153.       end
  154.     end
  155.     object Help1: TMenuItem
  156.       Caption = '&Help'
  157.       GroupIndex = 1
  158.       object Contents1: TMenuItem
  159.         Caption = '&Contents'
  160.       end
  161.       object SearchforHelpOn1: TMenuItem
  162.         Caption = '&Search for Help On...'
  163.       end
  164.       object HowtoUseHelp1: TMenuItem
  165.         Caption = '&How to Use Help'
  166.       end
  167.       object About1: TMenuItem
  168.         Caption = '&About...'
  169.       end
  170.     end
  171.   end
  172. end
  173.